

/* #region General */
/*------------@General-----------------*/


body{
    font-family: 'Poppins', sans-serif;
    background-color: rgb(224, 172, 172);
}

section{
    width: 80%;
    margin: auto;
}

h1{
    font-size: 36px;
    font-weight: 600;
    text-align: center;
}


p{
    color: black;
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.row{
    display: flex;
    justify-content: space-between;
}


.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.hero-btn:hover{
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1s;
}
/* #endregion */

/* #region Header */
/*------------@Header-----------------*/

.header{
    width: 100%;
    text-align: center;
    justify-content: center;
}

.banner{
    width: 100%;
    display: flex;
    justify-content: center;
}

.banner-col{
    display: flex;
    align-items: center;
    padding: 10px 20px 0 20px;
}

.banner-col h1{
    font-size: 48px;
    font-weight: 800;
}

.banner-col img{
    width: 250px;
    object-fit: scale-down;
}


nav{
    display: flex;
    padding: 0 10px;
    justify-content: space-between;
}

nav img{
    width: 100%;
    max-height: 30vh;
    align-self: center;
}

.nav-links{
    flex: 1;
    text-align: center;
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 0 30px;
    position: relative;

}

.nav-links ul li a{
    text-decoration: none;
    font-size: 15px;
    color: white;
}

.nav-links ul li::after {
    content:'';
    width: 0%;
    height: 4px;
    background: rgb(190, 46, 54);
    display: block;
    margin: auto;
    transition:0.5s;
}

.nav-links ul li:hover::after{
    width: 100%;
}

.header-col{
    text-align: center;
    flex-basis: 33%;
}


.banner-col .fa{
    display: none;
}

nav .fa{
    display: none;
}
@media(max-width: 700px){

    p{
        font-size: 16px;
    }
    
    .banner-col{
        padding:5px;
    }
    .right_dog{
        display: none;
    } 

    .banner-col img{
        width: 75px;
    }

    .nav-links ul li{
        display: block;
        margin-top: 25px;
    }
    .nav-links{
        position: fixed;
        background: rgba(173, 42, 42, 0.95);
        height: auto;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    .banner-col .fa{
        display: block;
        color: white;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    nav .fa{
        display: block;
        color: white;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul {
        padding: 0 30px;
    }


}
/* #endregion */

/* #region Update */
/* --------------@Update-----------------*/
.update{
    text-align: center;
}

.update h1{
    color: red; 
    font-family: Verdana, sans-serif; 
    font-weight: 600;   
}

/* #endregion */

/* #region About Lou */
/* --------------@About Lou-----------------*/
.about{
    text-align: center;
    padding-top: 5px;
}

.about-col{
    align-content: center;
    text-align: center;
    padding-top: 50px;
}

.about-col p{
    padding: 0 10%;
    text-align: justify;
}

.about-col img{
    width: 250px;
    height: 250px;
    border-radius: 50%;
}

@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}
/* #endregion */

/* #region About Site */
/* --------------@About Site -----------------*/
.site{
    width: 90%;
    margin: auto;
    text-align: center;
    padding-top: 5px;
}

.site-col{
    margin-top: 50px;
    flex-basis: 50%;
    border-radius: 10px;
    text-align: justify;
}

.site-col p{
    padding: 0 10%;
}

.site-col ul li {
    list-style: none;
    font-size: 18px;
    text-align: left;
    padding: 3px 15%;
}
  
.site-col ul li::before {
    content: '🐶';
    padding-right: 2%;
}

ul.not_allowed_list li {
    list-style: none;
    font-size: 18px;
    text-align: left;
    padding: 3px 15%;
}
  
ul.not_allowed_list li::before {
    content: '⛔';
    padding-right: 2%;
}


.site-col img{
    width: 100%;
    display: block;
}
/* #endregion */

/* #region Call To Action */
/* -------------- Call To Action -----------------*/
.cta{
    visibility: hidden;
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/banner2.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}

.cta h1{
    color: white;
    margin-bottom: 40px;
    padding: 0;
}

.cta p{
    color: white;
}

.cta .hero-btn{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 12px 34px;
    font-size: 13px;
    background: gray;
    position: relative;
    cursor: not-allowed;
}

@media(max-width: 700px){
    .cta h1{
        font-size: 24px;
    }
}

/* #endregion */

/* #region Footer */
/* -------------- Footer -----------------*/
.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

.footer h4{
    margin-bottom: 5px;
    margin-top: 20px;
    font-weight: 600;
}

.footer h6{
    font-size:12px;
    font-weight: 600;
}

.icons .fa{
    color: rgba(45, 45, 230, 0.5);
    text-decoration: none;
    font-size: 30px;
    margin: 0 30px;
    padding: 18px 0;
}

.icons .fa-google{
    color: red;
}

.icons .fa-facebook{
    color: blue;
}

    /*nextdoor*/
.icons .fa-home{
    color: rgb(11, 185, 11);
}
/* #endregion */

/* -------------------------------------- Pages ----------------------------------------*/



/* ----------------------------------------------*/
/* ---------------- Prices Page -------------------*/
/* ----------------------------------------------*/
/* #region Prices Page */
.price-section{
    width: 80%;
    margin: auto;
}

.prices{
    flex-basis: 32%;    
}


.prices div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #555;
    padding: 8px;
    box-sizing: border-box;
}

.prices h3{
    background: #fa5144;
    color: white;
    padding: 7px 0;
    font-size: 20px;
    text-align: center;
}

.prices h4{
    background: #fa5144;
    color: white;
    padding: 7px;
    font-size: 16px;
    text-align: center;
    margin-top: -15px;
    margin-bottom: 20px;
}

.prices h5{
    color: red;
    font-style: italic;
}


/* #endregion */



/* ----------------------------------------------*/
/* -------------- Location Page ------------------*/
/* ----------------------------------------------*/
/* #region Location Page */
.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}

.location iframe{
    width: 100%;
}


/* #endregion */


/* ----------------------------------------------*/
/* -------------- Contact Page ------------------*/
/* ----------------------------------------------*/
/* #region Contact Page */


.contact-us{
    width: 80%;
    margin: auto;
}

.contact-col form{
    padding: 20px 20px 5px 20px;
}

.contact-col{
    flex-basis: 50%;
    margin-bottom: 30px;
}

.contact-col h3{
    text-align: center;
}

.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa{
    font-size: 28px;
    color: #f44336;
    margin: 10px;
    margin-right: 30px;
}

.contact-col div p{
    padding: 0;
}

.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}

.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box; /*this will prevent horizontal scrollbars*/
}
/* #endregion */


/* ----------------------------------------------*/
/* -------------- Photos Page ------------------*/
/* ----------------------------------------------*/
/* #region Photos Page */

.museum{
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.gallery{
    margin: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 240px;
      
}

.gallery:hover{
    border: 3px solid rgba(153, 146, 146, 0.5);
}

.gallery img{
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.desc{
    padding: 15px;
    text-align: center;
}


@media(max-width: 700px){
    .museum{
        display: flexbox;
        margin-left: 25%;
    }

    .gallery{
        width: 240px;
    }
    
}




/* #endregion */



/* ----------------------------------------------*/
/* -------------- Success Page ------------------*/
/* ----------------------------------------------*/
/* #region Success Page */
.success-div{
    width: 400px;
    margin: auto;
    align-content: center;
    display: border-box;
    background-color: rgba(238, 123, 142, 0.5);
    box-shadow: 10px 10px 5px rgb(88, 85, 85);
    text-align: center;
    padding: 40px 0;
}

/* #endregion */
